home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Tech Arsenal 1
/
Tech Arsenal (Arsenal Computer).ISO
/
tek-01
/
asmwiz16.zip
/
OCREATE.BAT
< prev
next >
Wrap
DOS Batch File
|
1991-01-29
|
426b
|
12 lines
echo off
echo This batch file will assemble and link the EXAMPLE.ASM file using
echo OPTASM and LINK. If you are using a different assembler and/or linker,
echo this batch file must be changed to reflect the names of your assembler
echo and linker.
echo --------------------------------------------------------------------
pause
optasm example;
link example,,nul,asmwiz;
erase example.obj
execom example